runtime.m.throwing (field)

12 uses

	runtime (current package)
		panic.go#L1425: 	if gp.m.throwing == throwTypeNone {
		panic.go#L1426: 		gp.m.throwing = t
		panic.go#L1586: 		} else if level >= 2 || gp.m.throwing >= throwTypeRuntime {
		panic.go#L1636: 	if mp.locks != 1 || mp.mallocing != 0 || mp.throwing != throwTypeNone || mp.preemptoff != "" || mp.dying != 0 {
		proc.go#L6968: 		print(" mallocing=", mp.mallocing, " throwing=", mp.throwing, " preemptoff=", mp.preemptoff, " locks=", mp.locks, " dying=", mp.dying, " spinning=", mp.spinning, " blocked=", mp.blocked, " lockedg=")
		runtime1.go#L42: 	all = gp.m.throwing > throwTypeUser || t&tracebackAll != 0
		runtime1.go#L45: 	} else if gp.m.throwing >= throwTypeRuntime {
		runtime2.go#L647: 	throwing        throwType
		signal_unix.go#L761: 	mp.throwing = throwTypeRuntime
		traceback.go#L1005: 				if gp.m != nil && gp.m.throwing >= throwTypeRuntime && gp == gp.m.curg || level >= 2 {
		traceback.go#L1116: 	if mp.throwing >= throwTypeRuntime && gp != nil && (gp == mp.curg || gp == mp.caughtsig.ptr()) {
		traceback.go#L1242: 	if gp.m != nil && gp.m.throwing >= throwTypeRuntime && gp == gp.m.curg || level >= 2 {